home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gscolor2.c < prev    next >
C/C++ Source or Header  |  1997-04-24  |  6KB  |  199 lines

  1. /* Copyright (C) 1992, 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gscolor2.c */
  20. /* Level 2 color operators for Ghostscript library */
  21. #include "gx.h"
  22. #include "gserrors.h"
  23. #include "gxarith.h"
  24. #include "gxfixed.h"            /* ditto */
  25. #include "gxmatrix.h"            /* for gzstate.h */
  26. #include "gxcspace.h"            /* for gscolor2.h */
  27. #include "gxcolor2.h"
  28. #include "gzstate.h"
  29.  
  30. /* GC descriptors */
  31. public_st_indexed_map();
  32.  
  33. /* Define the Indexed color space type. */
  34. cs_declare_procs(private, gx_concretize_Indexed, gx_install_Indexed,
  35.   gx_adjust_cspace_Indexed,
  36.   gx_enum_ptrs_Indexed, gx_reloc_ptrs_Indexed);
  37. private cs_proc_concrete_space(gx_concrete_space_Indexed);
  38. const gs_color_space_type
  39.     gs_color_space_type_Indexed =
  40.      { gs_color_space_index_Indexed, 1, false,
  41.        gx_init_paint_1, gx_concrete_space_Indexed,
  42.        gx_concretize_Indexed, NULL,
  43.        gx_default_remap_color, gx_install_Indexed,
  44.        gx_adjust_cspace_Indexed, gx_no_adjust_color_count,
  45.        gx_enum_ptrs_Indexed, gx_reloc_ptrs_Indexed
  46.      };
  47.  
  48. /* setcolorspace */
  49. int
  50. gs_setcolorspace(gs_state *pgs, gs_color_space *pcs)
  51. {    gs_memory_t *mem = pgs->memory;
  52.     int code;
  53.     gs_color_space cs_old;
  54.     gs_client_color cc_old;
  55.  
  56.     if ( pgs->in_cachedevice )
  57.       return_error(gs_error_undefined);
  58.     cs_old = *pgs->color_space;
  59.     cc_old = *pgs->ccolor;
  60.     (*pcs->type->adjust_cspace_count)(pcs, mem, 1);
  61.     *pgs->color_space = *pcs;
  62.     if ( (code = (*pcs->type->install_cspace)(pcs, pgs)) < 0 )
  63.       goto rcs;
  64.     cs_full_init_color(pgs->ccolor, pcs);
  65.     (*cs_old.type->adjust_color_count)(&cc_old, &cs_old, mem, -1);
  66.     (*cs_old.type->adjust_cspace_count)(&cs_old, mem, -1);
  67.     gx_unset_dev_color(pgs);
  68.     return code;
  69.     /* Restore the color space if installation failed. */
  70. rcs:    *pgs->color_space = cs_old;
  71.     (*pcs->type->adjust_cspace_count)(pcs, mem, -1);
  72.     return code;
  73. }
  74.  
  75. /* currentcolorspace */
  76. const gs_color_space *
  77. gs_currentcolorspace(const gs_state *pgs)
  78. {    return pgs->color_space;
  79. }
  80.  
  81. /* setcolor */
  82. int
  83. gs_setcolor(gs_state *pgs, const gs_client_color *pcc)
  84. {    gs_memory_t *mem = pgs->memory;
  85.     gs_color_space *pcs = pgs->color_space;
  86.  
  87.     if ( pgs->in_cachedevice )
  88.       return_error(gs_error_undefined);
  89.     (*pcs->type->adjust_color_count)(pcc, pcs, mem, 1);
  90.     (*pcs->type->adjust_color_count)(pgs->ccolor, pcs, mem, -1);
  91.     *pgs->ccolor = *pcc;
  92.     gx_unset_dev_color(pgs);
  93.     return 0;
  94. }
  95.  
  96. /* currentcolor */
  97. const gs_client_color *
  98. gs_currentcolor(const gs_state *pgs)
  99. {    return pgs->ccolor;
  100. }
  101.  
  102. /* ------ Internal routines ------ */
  103.  
  104. /* Color remapping for Indexed color spaces. */
  105.  
  106. private const gs_color_space *
  107. gx_concrete_space_Indexed(const gs_color_space *pcs,
  108.   const gs_imager_state *pis)
  109. {    const gs_color_space *pbcs =
  110.       (const gs_color_space *)&pcs->params.indexed.base_space;
  111.     return cs_concrete_space(pbcs, pis);
  112. }
  113.  
  114. private int
  115. gx_concretize_Indexed(const gs_client_color *pc, const gs_color_space *pcs,
  116.   frac *pconc, const gs_imager_state *pis)
  117. {    float value = pc->paint.values[0];
  118.     int index =
  119.       (is_fneg(value) ? 0 :
  120.        value >= pcs->params.indexed.hival ? pcs->params.indexed.hival :
  121.        (int)value);
  122.     gs_client_color cc;
  123.     const gs_color_space *pbcs =
  124.       (const gs_color_space *)&pcs->params.indexed.base_space;
  125.  
  126.     if ( pcs->params.indexed.use_proc )
  127.       {    int code =
  128.           (*pcs->params.indexed.lookup.map->proc.lookup_index)
  129.             (&pcs->params.indexed, index, &cc.paint.values[0]);
  130.         if ( code < 0 ) return code;
  131.       }
  132.     else
  133.       {    int m = pcs->params.indexed.base_space.type->num_components;
  134.         const byte *pcomp =
  135.           pcs->params.indexed.lookup.table.data + m * index;
  136.         switch ( m )
  137.           {
  138.           default: return_error(gs_error_rangecheck);
  139.           case 4: cc.paint.values[3] = pcomp[3] * (1.0 / 255.0);
  140.           case 3: cc.paint.values[2] = pcomp[2] * (1.0 / 255.0);
  141.             cc.paint.values[1] = pcomp[1] * (1.0 / 255.0);
  142.           case 1: cc.paint.values[0] = pcomp[0] * (1.0 / 255.0);
  143.           }
  144.       }
  145.     return (*pbcs->type->concretize_color)(&cc, pbcs, pconc, pis);
  146. }
  147.  
  148. /* Color space installation ditto. */
  149.  
  150. private int
  151. gx_install_Indexed(gs_color_space *pcs, gs_state *pgs)
  152. {    return (*pcs->params.indexed.base_space.type->install_cspace)
  153.         ((gs_color_space *)&pcs->params.indexed.base_space, pgs);
  154. }
  155.  
  156. /* Color space reference count adjustment ditto. */
  157.  
  158. private void
  159. gx_adjust_cspace_Indexed(const gs_color_space *pcs, gs_memory_t *mem,
  160.   int delta)
  161. {    if ( pcs->params.indexed.use_proc )
  162.     {    rc_adjust_const(pcs->params.indexed.lookup.map, delta,
  163.                 "gx_adjust_Indexed");
  164.     }
  165.     (*pcs->params.indexed.base_space.type->adjust_cspace_count)
  166.      ((const gs_color_space *)&pcs->params.indexed.base_space, mem, delta);
  167. }
  168.  
  169. /* GC procedures ditto. */
  170.  
  171. #define pcs ((gs_color_space *)vptr)
  172.  
  173. private ENUM_PTRS_BEGIN(gx_enum_ptrs_Indexed) {
  174.     return (*pcs->params.indexed.base_space.type->enum_ptrs)
  175.          (&pcs->params.indexed.base_space,
  176.           sizeof(pcs->params.indexed.base_space), index-1, pep);
  177.     }
  178.     case 0:
  179.         if ( pcs->params.indexed.use_proc )
  180.           ENUM_RETURN((void *)pcs->params.indexed.lookup.map);
  181.         else
  182.           {    pcs->params.indexed.lookup.table.size =
  183.               (pcs->params.indexed.hival + 1) *
  184.                 pcs->params.indexed.base_space.type->num_components;
  185.             *pep = &pcs->params.indexed.lookup.table;
  186.             return ptr_const_string_type;
  187.           }
  188. ENUM_PTRS_END
  189. private RELOC_PTRS_BEGIN(gx_reloc_ptrs_Indexed) {
  190.     (*pcs->params.indexed.base_space.type->reloc_ptrs)
  191.       (&pcs->params.indexed.base_space, sizeof(gs_base_color_space), gcst);
  192.     if ( pcs->params.indexed.use_proc )
  193.       RELOC_PTR(gs_color_space, params.indexed.lookup.map);
  194.     else
  195.       RELOC_CONST_STRING_PTR(gs_color_space, params.indexed.lookup.table);
  196. } RELOC_PTRS_END
  197.  
  198. #undef pcs
  199.